:root {
    --blue-shine: #4599FE;
    --oxford-navy: #031E49;
    --strong-red: #EE0405;
    --texts-red: #780000;
    --royal-white: #FFFDFE;
    --loblolly: #B8CAD1;
    --font-primary: 'Exo 2', sans-serif;
    --transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  }
  
  * { margin: 0; padding: 0; box-sizing: border-box; font-family: var(--font-primary); }
  html { scroll-behavior: smooth; }
  body { background: var(--oxford-navy); color: var(--loblolly); overflow-x: hidden; line-height: 1.6; }
  .container { width: 90%; max-width: 1200px; margin: 0 auto; }
  
  /* HEADER */
  .header {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    backdrop-filter: blur(12px); background: rgba(3, 30, 73, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
  }
  .header-inner { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; }
  .logo img { height: 45px; }
  .nav a { margin-left: 30px; color: var(--royal-white); text-decoration: none; font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; }
  .nav a:hover { color: var(--strong-red); }
  
  /* HERO SECTION */
  .hero {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      overflow: hidden;
  }
  
  #heroParticles {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      z-index: 1;
      pointer-events: none;
  }
  
  .hero-content {
      position: relative;
      z-index: 5;
      width: 100%;
      max-width: 900px;
      padding: 0 20px;
  }
  
  .hero-content h1 {
      font-size: clamp(3.5rem, 12vw, 7.5rem);
      font-weight: 900;
      letter-spacing: -3px;
      line-height: 0.9;
      color: var(--royal-white);
      text-transform: uppercase;
      margin-bottom: 10px;
  }
  
  .hero-content h1 .text-red {
      color: var(--strong-red) !important;
      text-shadow: 0 0 30px rgba(238, 4, 5, 0.4);
  }
  
  .hero-content .subtitle {
      font-size: clamp(0.9rem, 2vw, 1.2rem);
      margin: 20px 0 15px;
      text-transform: uppercase;
      letter-spacing: 6px;
      opacity: 0.8;
  }
  
  .hero-description {
      font-size: clamp(0.95rem, 1.5vw, 1.1rem);
      margin: 0 auto 40px;
      max-width: 700px;
      opacity: 0.85;
      line-height: 1.7;
  }
  
  .hero-btns {
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
  }
  
  /* BUTTONS */
  .btn-red { background: var(--strong-red); color: white; padding: 18px 40px; border-radius: 50px; text-decoration: none; font-weight: 800; text-transform: uppercase; transition: var(--transition); display: inline-block; font-size: 0.9rem; border: none; cursor: pointer; }
  .btn-red:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(238, 4, 5, 0.3); background: white; color: var(--strong-red); }
  .btn-outline { border: 2px solid var(--royal-white); color: white; padding: 16px 38px; border-radius: 50px; text-decoration: none; font-weight: 800; text-transform: uppercase; transition: var(--transition); font-size: 0.9rem; }
  .btn-outline:hover { background: white; color: var(--oxford-navy); }
  .btn-red-small { background: var(--strong-red); color: white; padding: 10px 20px; border-radius: 50px; text-decoration: none; font-weight: 700; text-transform: uppercase; font-size: 0.7rem; margin-left: 20px; }
  
  /* BRAND STRIP */
  .brand-strip { background: rgba(0,0,0,0.2); padding: 50px 0; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
  .strip-inner { display: flex; justify-content: space-between; align-items: center; }
  .strip-item { display: flex; align-items: center; gap: 15px; }
  .strip-icon { color: var(--strong-red); font-size: 1.6rem; }
  .strip-text strong { display: block; color: white; font-size: 0.95rem; text-transform: uppercase; }
  .strip-text span { font-size: 0.8rem; opacity: 0.6; }
  .strip-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }
  
  /* SERVICES MINIMAL */
  .services-minimal { padding: 120px 0; }
  .section-title { font-size: 3rem; text-align: center; margin-bottom: 50px; color: white; text-transform: uppercase; font-weight: 900; }
  .intro-text { max-width: 900px; margin: 0 auto; text-align: center; }
  .intro-text p { font-size: 1.05rem; margin-bottom: 20px; line-height: 1.8; opacity: 0.9; }
  .intro-text .cta-text { font-weight: 600; color: white; opacity: 1; margin-top: 30px; }
  
  /* GALLERY SECTION */
  .gallery-section { padding: 120px 0; background: rgba(0,0,0,0.15); }
  .gallery-intro { text-align: center; font-size: 1.1rem; opacity: 0.8; margin-top: 20px; }
  
  /* GALLERY PREVIEW */
  .gallery-preview { 
      padding: 120px 0; 
      background: rgba(0,0,0,0.15); 
  }
  
  .preview-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin: 60px 0;
  }
  
  .preview-item {
      position: relative;
      overflow: hidden;
      border-radius: 4px;
      cursor: pointer;
      transition: var(--transition);
  }
  
  .preview-image {
      position: relative;
      width: 100%;
      padding-bottom: 66.67%; /* 3:2 aspect ratio */
      overflow: hidden;
      background: rgba(0, 0, 0, 0.3);
  }
  
  .preview-image img {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
      filter: brightness(0.85) contrast(1.1);
  }
  
  .preview-item:hover img {
      transform: scale(1.08);
      filter: brightness(1) contrast(1.15);
  }
  
  .preview-overlay {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(to top, rgba(3, 30, 73, 0.95), transparent);
      padding: 40px 20px 20px;
      opacity: 0;
      transition: var(--transition);
  }
  
  .preview-item:hover .preview-overlay {
      opacity: 1;
  }
  
  .preview-label {
      color: white;
      font-weight: 800;
      text-transform: uppercase;
      font-size: 1rem;
      letter-spacing: 1px;
      display: block;
  }
  
  .gallery-cta-btn {
      text-align: center;
      margin-top: 40px;
  }
  
  /* CONTACT */
  .contact-section { padding: 150px 0; }
  .contact-card { background: rgba(255,255,255,0.02); padding: 80px 40px; border-radius: 4px; text-align: center; backdrop-filter: blur(15px); border: 1px solid rgba(255,255,255,0.05); }
  .contact-visual { position: relative; display: inline-block; margin-bottom: 40px; }
  .contact-logo-img { height: 100px; position: relative; z-index: 2; }
  .glow-ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 180px; height: 180px; background: radial-gradient(circle, rgba(238, 4, 5, 0.15) 0%, transparent 70%); z-index: 1; }
  .contact-header h2 { font-size: 2.5rem; margin-bottom: 20px; color: white; text-transform: uppercase; font-weight: 900; }
  .contact-header p { font-size: 1.05rem; margin: 0 auto 40px; max-width: 700px; opacity: 0.85; }
  .contact-grid { display: flex; justify-content: center; gap: 20px; margin-top: 50px; flex-wrap: wrap; }
  .contact-method { background: rgba(0,0,0,0.4); padding: 25px 45px; border-radius: 2px; display: flex; align-items: center; gap: 20px; text-decoration: none; color: white; transition: var(--transition); border: 1px solid rgba(255,255,255,0.05); }
  .contact-method:hover { border-color: var(--strong-red); transform: translateY(-5px); }
  .wa-special:hover { border-color: #25D366; }
  .method-icon { font-size: 1.8rem; color: var(--strong-red); }
  .wa-special:hover .method-icon { color: #25D366; }
  .method-text span { display: block; font-size: 0.7rem; text-transform: uppercase; opacity: 0.5; letter-spacing: 1px; }
  .method-text strong { font-size: 1.1rem; }
  
  /* SOCIAL LINKS */
  .social-links { margin-top: 60px; }
  .social-links h3 { color: white; font-size: 1.2rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
  .social-icons { display: flex; justify-content: center; gap: 30px; }
  .social-icons a { color: var(--loblolly); text-decoration: none; font-size: 1rem; transition: 0.3s; display: flex; align-items: center; gap: 8px; }
  .social-icons a:hover { color: var(--strong-red); }
  .social-icons i { font-size: 1.3rem; }
  
  /* REVEAL ANIMATION */
  .reveal { opacity: 0; transform: translateY(40px); transition: var(--transition); }
  .reveal.active { opacity: 1; transform: translateY(0); }
  
  /* FOOTER */
  .footer { padding: 60px 0; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.85rem; color: rgba(255,255,255,0.5); }
  .footer-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-section h4 { color: white; font-size: 1rem; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; }
  .footer-section ul { list-style: none; }
  .footer-section ul li { margin-bottom: 8px; }
  .footer-section ul li a { color: var(--loblolly); text-decoration: none; transition: 0.3s; }
  .footer-section ul li a:hover { color: var(--strong-red); }
  .footer-bottom { grid-column: 1 / -1; text-align: center; margin-top: 30px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); }
  .footer-bottom a { color: var(--loblolly); text-decoration: none; margin-right: 20px; transition: 0.3s; }
  .footer-bottom a:hover { color: var(--strong-red); }
  
  @media (max-width: 900px) {
      .strip-inner, .contact-grid { flex-direction: column; gap: 40px; align-items: center; }
      .strip-divider { display: none; }
      .hero-content h1 { font-size: 3.5rem; }
      .hero-btns { flex-direction: column; width: 100%; }
      .btn-outline { margin-left: 0; width: 100%; }
      .btn-red { width: 100%; }
      .footer-content { grid-template-columns: 1fr; }
      .nav { display: flex; flex-wrap: wrap; justify-content: center; }
      .nav a { margin: 5px 10px; }
      .preview-grid { 
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 20px; 
      }
  }